/* 主视觉区 */
.hero-bg {
    width: 74%;
    height: auto;
    position: relative;
    overflow: hidden;
    background-color: #FCFCFC;
}

.hero {
    display: flex; /* 使用Flexbox实现左右分布 */
    align-items: center; /* 垂直居中对齐 */
    justify-content: space-between;
    margin-top: 10vh;
    color: #002F41;
    
}
    .hero h1 {
        font-family: Roboto;
        font-size: 60px;
        font-weight: 700;
    }
    .hero h2 {
        font-family: Source Han Sans CN;
        font-size: 48px;
        font-weight: 700;
    }
    .hero p {
        font-size: 18px;
        margin-top: 24px;
    }

.map-section {
    width: 100%;
    position: relative;
    box-shadow: 0 2px 18px rgba(46,126,203,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4vh;
}
    .map-section img {
        border: 2px solid #DDD;
        width: 100%;
        height: 100%;
        border-radius: 24px;
        object-fit: cover;
    }
    .map-section span {
        font-size: 18px;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.6);
        color: white;
        padding: 1vh 1.5vh;
        border-radius: 5px;
    }

.contact-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10vh;
    gap: 28px;
}

.info-item {
  flex: 1 1 0;
  background: transparent;
  border-radius: 12px;
  text-align: left;
  padding: 0 12px;
  min-width: 190px;
}
    .info-item img {
      width: 48px;
      height: 48px;
      margin-bottom: 8px;
    }
    .info-item h3 {
      font-size: 20px;
      font-weight: 700;
      color: #183B56;
      margin: 14px 0 8px 0;
      letter-spacing: 0.5px;
    }
    .info-item p {
        width:220px;
        font-size: 16px;
        color: #7a8b9b;
        line-height: 1.7;
    }